type net/http.http2FrameWriteRequest

51 uses

	net/http (current package)
		h2_bundle.go#L4227: 		wantWriteFrameCh:            make(chan http2FrameWriteRequest, 8),
		h2_bundle.go#L4374: 	wantWriteFrameCh chan http2FrameWriteRequest // from handlers -> serve
		h2_bundle.go#L4655: 	wr  http2FrameWriteRequest // what was written (or attempted)
		h2_bundle.go#L4663: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest, wd *http2writeData) {
		h2_bundle.go#L4714: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L4917: 	err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L4960: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
		h2_bundle.go#L4980: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
		h2_bundle.go#L5044: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
		h2_bundle.go#L5174: 			sc.startFrameWrite(http2FrameWriteRequest{
		h2_bundle.go#L5184: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2writeSettingsAck{}})
		h2_bundle.go#L5197: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2flushFrameWriter{}})
		h2_bundle.go#L5261: 	sc.writeFrame(http2FrameWriteRequest{write: se})
		h2_bundle.go#L5390: 	sc.writeFrame(http2FrameWriteRequest{write: http2writePingAck{f}})
		h2_bundle.go#L5733: 	st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
		h2_bundle.go#L6178: 			sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6219: 	if err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6242: 	sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6297: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L7020: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L10650: 	Push(wr http2FrameWriteRequest)
		h2_bundle.go#L10656: 	Pop() (wr http2FrameWriteRequest, ok bool)
		h2_bundle.go#L10667: type http2FrameWriteRequest struct {
		h2_bundle.go#L10686: func (wr http2FrameWriteRequest) StreamID() uint32 {
		h2_bundle.go#L10702: func (wr http2FrameWriteRequest) isControl() bool {
		h2_bundle.go#L10708: func (wr http2FrameWriteRequest) DataSize() int {
		h2_bundle.go#L10725: func (wr http2FrameWriteRequest) Consume(n int32) (http2FrameWriteRequest, http2FrameWriteRequest, int) {
		h2_bundle.go#L10726: 	var empty http2FrameWriteRequest
		h2_bundle.go#L10747: 		consumed := http2FrameWriteRequest{
		h2_bundle.go#L10761: 		rest := http2FrameWriteRequest{
		h2_bundle.go#L10780: func (wr http2FrameWriteRequest) String() string {
		h2_bundle.go#L10792: func (wr *http2FrameWriteRequest) replyToWriter(err error) {
		h2_bundle.go#L10806: 	s          []http2FrameWriteRequest
		h2_bundle.go#L10812: func (q *http2writeQueue) push(wr http2FrameWriteRequest) {
		h2_bundle.go#L10816: func (q *http2writeQueue) shift() http2FrameWriteRequest {
		h2_bundle.go#L10823: 	q.s[len(q.s)-1] = http2FrameWriteRequest{}
		h2_bundle.go#L10832: func (q *http2writeQueue) consume(n int32) (http2FrameWriteRequest, bool) {
		h2_bundle.go#L10834: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L10839: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L10855: 		q.s[i] = http2FrameWriteRequest{}
		h2_bundle.go#L11247: func (ws *http2priorityWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11267: func (ws *http2priorityWriteScheduler) Pop() (wr http2FrameWriteRequest, ok bool) {
		h2_bundle.go#L11354: func (ws *http2randomWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11368: func (ws *http2randomWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11383: 	return http2FrameWriteRequest{}, false
		h2_bundle.go#L11454: func (ws *http2roundRobinWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11473: func (ws *http2roundRobinWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11479: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L11492: 	return http2FrameWriteRequest{}, false